CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - java thread

搜索资源列表

  1. Chess

    0下载:
  2. 本程序采用java的线程和事件机制,实现了象棋的绘图和对奕过程,不支持联机-This procedure using java thread and event mechanism to achieve the chess games of the mapping and the process does not support online
  3. 所属分类:software engineering

    • 发布日期:2017-04-01
    • 文件大小:99424
    • 提供者:melon
  1. CoreJava

    0下载:
  2. 一、Java概况介绍 二、基本数据类型,控制语句 三、Java中的类,方法,属性 四、封装,继承,多态 五、修饰符,一些简单的设计模式 六、接口,抽象类,类的类型,异常 七、集合 八、java中的图形界面 九、多线程及线程间通信 十、I/o流,网路知识,及socket编程。 -One, Java sheets Second, the basic data types, control statements III, Java classes, methods,
  3. 所属分类:IT Hero

    • 发布日期:2017-04-06
    • 文件大小:375452
    • 提供者:蒋中华
  1. babu

    0下载:
  2. java thread using bank java thread using bank java thread using bank-java thread using bank java thread using bank java thread using bank java thread using bank java thread using bank
  3. 所属分类:software engineering

    • 发布日期:2017-04-15
    • 文件大小:6056
    • 提供者:mahendrababu
  1. Multithreading

    0下载:
  2. 一个关于Java多线程的技术文档,简单介绍了线程的概念,线程的创建,线程的调度,线程的优先级等基本概念,并配有相应的代码讲解。-Java multi-threaded on a technical documentation, briefly introduced the concept of threads, thread creation, thread scheduling, thread priority, the basic concepts and explain with a co
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:793102
    • 提供者:吴贵洪
  1. Hilo1.java

    0下载:
  2. How to do a thread it contains how to build a thread its a very simple explanation
  3. 所属分类:Project Design

    • 发布日期:2017-04-11
    • 文件大小:950
    • 提供者:Guillermo
  1. Thread

    0下载:
  2. 自己写的java线程测试代码,介绍synchronized的,不知道对大家有没有帮助-Their own test code written in java thread to introduce synchronized, and do not know that we have did not help. .
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:3940
    • 提供者:maron
  1. Java_Thread_Programming

    0下载:
  2. Intruction of java thread programming
  3. 所属分类:Development Research

    • 发布日期:2017-05-10
    • 文件大小:2310269
    • 提供者:Phuong
  1. java-Thread-study-summary

    0下载:
  2. 对多线程进行了由浅入深的讲解,有丰富的实例让初学者更容易上手-Multi-threaded Deep explain, there is a wealth of examples for beginners easier to get started
  3. 所属分类:File Formats

    • 发布日期:2017-04-01
    • 文件大小:499668
    • 提供者:黄小青
  1. Thread-New

    0下载:
  2. Thread and Multi-Threaded Programming 39 java examples
  3. 所属分类:software engineering

    • 发布日期:2017-11-30
    • 文件大小:30490
    • 提供者:ruwini
  1. JAVA-the-thread-pool-information

    0下载:
  2. 从网站论坛中学习的,有关JAVA线程、线程池资料的资料整理-Learning from the website forum, collate information about JAVA thread, the thread pool information
  3. 所属分类:software engineering

    • 发布日期:2017-11-11
    • 文件大小:28581
    • 提供者:youn nie
  1. ThreadOfJava

    0下载:
  2. This an introduction of Java Thread,including Theory,Invoke,Sync,Thread and Convert,hope to help these developers who are learning Thread of Java,Thank you-This is an introduction of Java Thread,including Theory,Invoke,Sync,Thread and Convert,hope to
  3. 所属分类:Communication

    • 发布日期:2017-12-08
    • 文件大小:179175
    • 提供者:abc
  1. java-thread-safe-singleton-pattern

    0下载:
  2. 一个java线程安全的单例模式:饥饿模式和延迟加载-A java thread-safe singleton pattern: starvation mode and lazy loading
  3. 所属分类:software engineering

    • 发布日期:2017-11-05
    • 文件大小:16672
    • 提供者:zrf
  1. Multi-thread

    0下载:
  2. 在Java中通过socket实现的多人聊天,只能实现多个客户分别和服务端聊天,服务端的聊天内容则只能同时发给所有用户。不能实现客户与客户的聊天。-use the socket in Java to realize the MultiChatting function
  3. 所属分类:File Formats

  1. java-basis

    0下载:
  2. Eclipse下运行java Swarm以及jheatbugs例子的图文攻略 看了很多网上的说明,好像运行都有点问题,自己摸索了下,参照Swarm网站的How to Set Up Java Swarm in Eclipse ------------------- CLSFractal: Thread mouseClicked BlankArea:mouseEventDemo mousePressed Myblack: Graphics Color MouseEvent
  3. 所属分类:Software Testing

    • 发布日期:2017-11-06
    • 文件大小:196037
    • 提供者:xx
  1. Java-Virtual-Machine

    0下载:
  2. Java虚拟机使用锁机制来实现多线程共享数据结构的同步.锁机制维护的临界区通常对共享数据结构只进行读操作.只读锁是指当某个线程持有锁在只读临界区时,其他线程可以直接进入只读临界区而无需等待.只读锁能极大地提高锁机制的同步性能.Java虚拟机的锁机制可分为轻量级锁和重量级锁两层,当线程冲突时从轻量级锁转向重量级锁.本文分别从轻量级锁和重量级锁两个层次分别进行只读锁优化.轻量级锁的只读优化算法可以减少原子操作的开销;重量级锁的只读优化算法则可以使多个线程同时在只读临界区中.最后在Java虚拟机Hot
  3. 所属分类:software engineering

    • 发布日期:2017-04-06
    • 文件大小:899642
    • 提供者:温智彬
  1. JAVA-thread

    0下载:
  2. Java多线程的详细描述和具体实例开发,有助于初学者的学习与开发-Java multithreaded detailed descr iption and specific examples of the development, learning and development to help beginners
  3. 所属分类:File Formats

    • 发布日期:2017-04-25
    • 文件大小:12646
    • 提供者:郑瑞
  1. JAVA--under-development

    0下载:
  2. 本文主要浅述了在软件开发背景下,JAVA语言的一些基本的知识和理论框架,从JAVA语言的在软件开发下的基础和JAVA语言在软件开发下的面向对象的程序结构两方面进行了阐述。从JAVA语言的起源、编程思想和基本原则以及JAVA语言的特点三方面详细的对JAVA基础进行了论述。从类、继承、封装、对象的建立与使用多态性、接口和线程对第二部分面向对象的程序结构部分进行了说明。从而用通俗的语言为读者介绍了JAVA语言。-This paper described a light background in so
  3. 所属分类:Development Research

    • 发布日期:2017-04-01
    • 文件大小:176969
    • 提供者:胡涛
  1. Thread

    0下载:
  2. Java多线程基础文档,适合初学者,详细的源代码。-Multi thread entry
  3. 所属分类:software engineering

    • 发布日期:2017-05-03
    • 文件大小:859402
    • 提供者:Gang
  1. ticket

    0下载:
  2. 这是一个java线程的买票系统,解决同步问题.-This is a java thread to buy a ticket system to solve the problem of synchronization.
  3. 所属分类:File Formats

    • 发布日期:2017-04-11
    • 文件大小:768
    • 提供者:莫圣
  1. Principle of Operating System1

    0下载:
  2. 针对进程和线程模型进行的一个深入的讲解,是对无论是前端还是后台编程的一个重要基础。(An in-depth explanation of the process and thread model is an important basis for both front-end and back-end programming.)
  3. 所属分类:软件设计/软件工程

    • 发布日期:2018-04-23
    • 文件大小:37320704
    • 提供者:Jorton
« 12 »
搜珍网 www.dssz.com